home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-12-06 | 499 b | 21 lines |
- !include <ntwin32.mak>
-
- !ifdef DEBUG
- COPTS=-c -Od -Gs -G3 -Zi -W3 -DSTRICT -DWIN32 -D_X86_
- LOPTS=-subsystem:windows,4.0 -debug:full -debugtype:cv -machine:IX86
- !else
- COPTS=-c -Ox -Gs -G3 -W3 -DSTRICT -DWIN32 -D_X86_
- LOPTS=-subsystem:windows,4.0 -debug:none -opt:noref -machine:IX86
- !endif
-
- all: heap32.exe
-
- heap32.res: heap32.rc
- rc -r heap32.rc
-
- heap32.obj: heap32.c
- cl $(COPTS) heap32.c
-
- heap32.exe: heap32.res heap32.obj
- link $(LOPTS) heap32.res heap32.obj $(guilibs)
-